home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / hlp_auth / gethep / gethelp.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1993-04-02  |  1013 b   |  33 lines

  1. VERSION 2.00
  2. Begin Form GetHelp 
  3.    Caption         =   "Get Help"
  4.    Height          =   2700
  5.    Icon            =   GETHELP.FRX:0000
  6.    Left            =   1215
  7.    LinkTopic       =   "Form1"
  8.    Picture         =   GETHELP.FRX:0302
  9.    ScaleHeight     =   2205
  10.    ScaleWidth      =   5730
  11.    Top             =   2025
  12.    Visible         =   0   'False
  13.    Width           =   5940
  14.    Begin Label Label1 
  15.       Alignment       =   2  'Center
  16.       Caption         =   "this is a hidden window to call a help file from an icon in a group window"
  17.       Height          =   495
  18.       Left            =   1080
  19.       TabIndex        =   0
  20.       Top             =   960
  21.       Visible         =   0   'False
  22.       Width           =   3615
  23.    End
  24. Sub Form_Load ()
  25.      
  26.      HelpData$ = KeyToGet & Chr$(0)
  27.      Temp% = WinHelp(hWnd, HelpToGet, HELP_KEY, ByVal HelpData$)
  28. '    On Error GoTo halt       'left over from debugging
  29. 'halt:
  30. '         Stop
  31.      CloseWindow
  32. End Sub
  33.